2c97196c70722967d2ea4304b6e2d5a189082186,plugins/cvs2/source/com/intellij/cvsSupport2/cvsoperations/common/CompositeOperaton.java,CompositeOperaton,login,#Collection#ModalityContext#,24

Before Change


  }

  protected boolean login(Collection<CvsRootProvider> processedCvsRoots, ModalityContext executor) throws CannotFindCvsRootException {
    for (Iterator each = getSubOperations().iterator(); each.hasNext();) {
      CvsOperation operation = (CvsOperation) each.next();
      if (!operation.login(processedCvsRoots, executor)) return false;
    }
    return true;

After Change


  }

  protected boolean login(Collection<CvsRootProvider> processedCvsRoots, ModalityContext executor) throws CannotFindCvsRootException {
    for (final CvsOperation operation : getSubOperations()) {
      if (!operation.login(processedCvsRoots, executor)) return false;
    }
    return true;